home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 7 / BBS in a Box - Macintosh - Volume VII (BBS in a Box) (January 1993).iso / Files / Prog / M / MacIISLOTTools.cpt / Notes on the tools… < prev    next >
Text File  |  1988-03-19  |  1KB  |  45 lines

  1. Here are some notes on the applications and tools in this folder:
  2.  
  3.  
  4. The crcpatch tool calculates the crc value.  See the example build sequence
  5. below for
  6. the invocation sequence.  It is run after the declaration ROM file has been
  7. assembled
  8. and linked.
  9.  
  10. The data tool strips off the code 0 segment, and puts the code 1 segment in a
  11. data
  12. file, so the data file can be downloaded to a rom burner.
  13.  
  14. The tjscomm application is a rudimentary data comm program.  It can be used to
  15. download
  16. data file to a ROM burner.
  17.  
  18. The GetsInfo application prints out some summary info for cards in certain
  19. slots.  Don't
  20. worry about the slot 0 error, as future Macintosh II ROMs will contain a slot 0
  21. sResource.
  22.  
  23. The SlotMgrTst application exercises the slot manager.  It runs continuously,
  24. and the only way
  25. to stop it is to bring down and hold down a menu.  It has limited usefullness
  26. but is included
  27. anyway.
  28.  
  29.  
  30.  
  31. Here is an example of how the Apple Video ROM Code was built:
  32.  
  33.  
  34. ## Assemble and link the ROM
  35. directory "{Decl}TFB-b1:"
  36. asm -wb -i {AIncludes}nFiles  -i {Decl} VideoROM.a
  37. Link VideoROM.a.o   -o videoROM
  38.  
  39. ### Patch the crc value and convert the code to a data file.
  40. ### in this case, operate on the linked declaration file (videoROM)
  41. Tools:crcPatch" videoROM
  42. Tools:Data" videoROM  tfbROM1.d
  43.  
  44.  
  45.